home *** CD-ROM | disk | FTP | other *** search
- on exitFrame
- global gTimeKoll
- if rollOver(14) then
- cursor([25, 27])
- else
- cursor(-1)
- end if
- if gTimeKoll < the ticks then
- set the text of field "hurry" to " "
- end if
- if (the timer > (8 * 60)) and (the mouseDown = 0) then
- if inside(point(the mouseH, the mouseV), rect(268, 66, 388, 237)) = 0 then
- set slump to random(3)
- case slump of
- 1:
- set the text of field "hurry" to QUOTE & "Hey! There are people waiting out here!" & QUOTE
- doorBang()
- set gTimeKoll to the ticks + (2 * 60)
- 2:
- set the text of field "hurry" to QUOTE & "Hurry up in there!" & QUOTE
- knobTwist()
- set gTimeKoll to the ticks + (2 * 60)
- otherwise:
- nothing()
- end case
- startTimer()
- end if
- end if
- go(the frame)
- end
-
- on idle
- global gChatTime
- readOpponents()
- if the ticks > gChatTime then
- set the text of field "oppChat" to " "
- set gChatTime to the ticks + (8 * 60)
- end if
- end
-